home *** CD-ROM | disk | FTP | other *** search
/ Windows Expert / Windows Expert.iso / windownt / embh32.zip / EMBH.MKF < prev    next >
Text File  |  1993-09-16  |  555b  |  18 lines

  1. !include <ntwin32.mak>
  2.  
  3. all: embh.dll
  4.  
  5. embh.res: embh.rc
  6.    rc -r -fo embh.tmp embh.rc
  7.    cvtres -i386 embh.tmp -o embh.res
  8.    del embh.tmp
  9.  
  10. embh.obj: embh.c
  11.    cl386 -c -Ot -Gs3 -Zpe -D_X86_ -DWIN32 -D_DLL embh.c
  12.  
  13. embh.lib: embh.obj embh.def embh.res
  14.    lib32 -machine:i386 -def:embh.def embh.obj -out:embh.lib
  15.  
  16. embh.dll: embh.obj embh.def embh.res embh.lib
  17.    link32 -heap:4096,4096 -stack:5120,5120 -debug:none -subsystem:windows -base:0x1C000000 -dll -entry:DLLEntryPoint@12 -out:embh.dll embh.res embh.exp embh.obj \msvcnt\lib\*.lib
  18.